home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / ASCII.c < prev    next >
C/C++ Source or Header  |  1994-11-08  |  2KB  |  63 lines

  1. #include <config.h>
  2. /* $Id: ASCII.c,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $
  3.  */
  4. char *ASCII_id = "$Id: ASCII.c,v 1.13 1994/11/08 13:30:50 a904209 Exp a904209 $";
  5. #include <stdio.h>
  6. #include "ASCII.h"
  7. char *ASCII[] =
  8. {
  9.  "null", "", "", "",
  10.  "", "", "", "",
  11.  "", "", "", "",
  12.  "", "", "", "",
  13.  "", "", "", "",
  14.  "", "", "", "",
  15.  "", "", "", "",
  16.  "", "", "", "",
  17.  "space", "exclamation mark", "double quote", "hash",
  18.  "dollar", "percent", "ampersand", "quote",
  19.  "open parenthesis", "close parenthesis", "asterisk", "plus",
  20.  "comma", "minus", "full stop", "slash",
  21.  "zero", "one", "two", "three",
  22.  "four", "five", "six", "seven",
  23.  "eight", "nine", "colon", "semi colon",
  24.  "less than", "equals", "greater than", "question mark",
  25. #ifndef ALPHA_IN_DICT
  26.  "at", "ay", "bee", "see",
  27.  "dee", "e", "eff", "gee",
  28.  "aych", "i", "jay", "kay",
  29.  "ell", "em", "en", "ohe",
  30.  "pee", "kju", "are", "es",
  31.  "tee", "you", "vee", "double you",
  32.  "eks", "why", "zed", "open bracket",
  33. #else                             /* ALPHA_IN_DICT */
  34.  "at", "A", "B", "C",
  35.  "D", "E", "F", "G",
  36.  "H", "I", "J", "K",
  37.  "L", "M", "N", "O",
  38.  "P", "Q", "R", "S",
  39.  "T", "U", "V", "W",
  40.  "X", "Y", "Z", "open bracket",
  41. #endif                            /* ALPHA_IN_DICT */
  42.  "back slash", "close bracket", "circumflex", "underscore",
  43. #ifndef ALPHA_IN_DICT
  44.  "back quote", "ay", "bee", "see",
  45.  "dee", "e", "eff", "gee",
  46.  "aych", "i", "jay", "kay",
  47.  "ell", "em", "en", "ohe",
  48.  "pee", "kju", "are", "es",
  49.  "tee", "you", "vee", "double you",
  50.  "eks", "why", "zed", "open brace",
  51. #else                             /* ALPHA_IN_DICT */
  52.  "back quote", "A", "B", "C",
  53.  "D", "E", "F", "G",
  54.  "H", "I", "J", "K",
  55.  "L", "M", "N", "O",
  56.  "P", "Q", "R", "S",
  57.  "T", "U", "V", "W",
  58.  "X", "Y", "Z", "open brace",
  59. #endif                            /* ALPHA_IN_DICT */
  60.  "vertical bar", "close brace", "tilde", "delete",
  61.  NULL
  62. };
  63.